home *** CD-ROM | disk | FTP | other *** search
/ Power Programmierung 2 / Power-Programmierung CD 2 (Tewi)(1994).iso / c / library / mslang / poetmf / src / stepdlg.cpp < prev   
Encoding:
C/C++ Source or Header  |  1993-09-03  |  1.4 KB  |  52 lines

  1. // ******************************************************************
  2. //
  3. //  stepdlg.cpp : implementation file
  4. //
  5. //    Implemented classes:
  6. //        CStepDlg
  7. // 
  8. //  Author: POET Software, August 1993
  9. //
  10. // ******************************************************************
  11.  
  12. #include <stdafx.h>        //    header to MFC
  13. #include <stepdlg.h>    //    header to this file
  14.  
  15. #ifdef _DEBUG            //    added by ClassWizard
  16. #undef THIS_FILE
  17. static char BASED_CODE THIS_FILE[] = __FILE__;
  18. #endif
  19.  
  20. /////////////////////////////////////////////////////////////////////////////
  21. // CStepDlg dialog
  22.  
  23. CStepDlg::CStepDlg(CWnd* pParent /*=NULL*/)
  24.     : CDialog(CStepDlg::IDD, pParent)
  25. {
  26.     //{{AFX_DATA_INIT(CStepDlg)
  27.     m_intStepsize = 1;  //    set default stepsize to 1
  28.     m_intSeekmode = 1;    //    set default to equal
  29.     //}}AFX_DATA_INIT
  30. }
  31.  
  32. void CStepDlg::DoDataExchange(CDataExchange* pDX)
  33. {
  34.     CDialog::DoDataExchange(pDX);
  35.     //{{AFX_DATA_MAP(CStepDlg)
  36.     DDX_Text(pDX, IDC_EDIT_STEP, m_intStepsize);
  37.     DDX_Radio(pDX, IDC_SEEK_START, m_intSeekmode);
  38.     //}}AFX_DATA_MAP
  39. }
  40.  
  41. BEGIN_MESSAGE_MAP(CStepDlg, CDialog)
  42.     //{{AFX_MSG_MAP(CStepDlg)
  43.         // NOTE: the ClassWizard will add message map macros here
  44.     //}}AFX_MSG_MAP
  45. END_MESSAGE_MAP()
  46.  
  47. /////////////////////////////////////////////////////////////////////////////
  48. // CStepDlg message handlers
  49.  
  50. //    no message handlers necessary; OK and Cancel button handled automaticly
  51.  
  52.